Syntax
  
    public
    static
    void FileCopyBatch(IFileOperationsExecuter agent, string sourceDirName, string[] sourceFileNames, string destDirName, string[] destFileNames, bool overwrite, bool createDirectory)
  Parameters
  
    - agent
 
    - Type: IFileOperationsExecuter
The agent.
 
  
  
    - sourceDirName
 
    - Type: string
Directory to copy files from.
 
  
  
    - sourceFileNames
 
    - Type: string[]
Files in the directory to copy.
 
  
  
    - destDirName
 
    - Type: string
Directory to copy files to.
 
  
  
    - destFileNames
 
    - Type: string[]
Names of the copied files in the new directory.
 
  
  
    - overwrite
 
    - Type: bool
Value indicating whether files should be overwritten.
 
  
  
    - createDirectory
 
    - Type: bool
Value indicating whether the target directory should be created if it doesn't exist.